home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutord.EXE / 33.C < prev    next >
C/C++ Source or Header  |  1990-09-17  |  478b  |  32 lines

  1.  
  2. /* 
  3.     There may be additional include files required depending
  4.     upon the compile product you are using. Typical compilers
  5.     include Microsoft C by Microsoft or Turbo C by Boland Int'l.
  6. */
  7. #include <stdio.h>
  8. main()
  9. {
  10.     char    new='\n';
  11.     int    i=10, h;
  12.  
  13.     printf("Hello");
  14.     newline(new);
  15.     h=count(i);
  16.     /* h is 100, i is still 10 */
  17.     printf("h=%d, i=%d",h,i);
  18. }
  19.  
  20. newline(i)
  21. char    i;
  22. {
  23.     printf("%c",i);
  24. }
  25.  
  26. count(j)
  27. int    j;
  28. {
  29.     while(j<100) j+=10;
  30.     return(j);
  31. }
  32.